home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / netCD41 / DEMO16.DIR / 00060_Script_60 < prev    next >
Text File  |  1997-12-08  |  788b  |  33 lines

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 23 to 29
  4.     if rollover(n) then
  5.       if not the puppet of sprite n then
  6.         puppetSprite n, TRUE
  7.         set the cursor of sprite n to pointCursor
  8.         set the member of sprite n to the number of the member of sprite n +1
  9.       end if
  10.     else
  11.       puppetSprite n, FALSE
  12.     end if
  13.   end repeat
  14.   
  15.   repeat with n = 7 to 9
  16.     if rollover(n) then
  17.       if the scoreColor of sprite n <> 1 then
  18.         if not the puppet of sprite n then
  19.           puppetSprite n, TRUE
  20.           set the cursor of sprite n to pointCursor
  21.           set the blend of sprite n to 100
  22.         end if
  23.       end if
  24.     else
  25.       puppetSprite n, FALSE
  26.     end if
  27.   end repeat
  28.   
  29. end
  30.  
  31. on exitFrame
  32.   go to the frame
  33. end